How to Install NodeJs and Create First React App

How to Install NodeJs and Create First React App

In the Current Era, React and Flutter Frameworks are trending. Most of the Players are moving forward to learn react or Flutter. Well If you want to get started with Flutter. This Guide will help you to Install NodeJs and Create your First React Project.

 

About NodeJs

NodeJs Logo

Node.js is an open-source and an extremely powerful platform for executing JavaScript server-side. Node is used for real-time applications such as news-feeds, chat and web push notifications. Node.js is really fast, scalable and uses asynchronous programming. It reduces the processing time while uploading video and audio files. Coding in Node.js is easy to grasp, once you have known the concepts of object oriented programming and JavaScript.

 

How to Install NodeJs in Windows?

Here are some steps that you can follow to install Node.js:

1 .Firstly, one has to open the official page for Node.js downloads and click on the “Windows Installer” option to download Node.js for Windows.

2 . Now, run the Node.js .msi Installer and take care to accept the license, select the destination and authenticate for the install.

3 . To make sure Node.js has been installed, run "node –v" in your terminal.

4 . Next, update the version of npm with "npm install npm --global".

With the above steps, you will have installed Node.js and then, you can build.

 

Also read: Install Python Django and Create your First Django Project

 

About React

ReactJs

React is an open-source JavaScript library that offers many advantages. Dynamic properties allow for more reusable code and better organization. Instead of rendering an entire document, React checks and only re-renders the changes.

 

How to Create First React App

The following steps will guide you on how to create first React app:

1. Firstly, open up the terminal and uninstall any previously installed package. To do so, you need to run the commands:

   "npm uninstall –g create-react-app"

   "npx create-react-app myfirstreact app"

2. Now, run the command:

    "npx create-react-app myfirstreactapp"

3. When Yarn is installed, create-react-app uses it by default. If you prefer to use npm to create your project, you can execute this command:

   "npx create-react-app myfirstreactapp --use-npm"

The above steps will help you in creating your first React app and then, you can proceed further.

 

Thanks for reading this guide. We will be sharing some more tutorials and Guides about ReactJs. So, Keep visiting CodeYaan.com.